let myJson = {
"gameLijst" : [
    {
       "titel": "Zelda",
       "genre": "RPG"
    },
    {
       "titel": "Gran Turismo",
       "genre": "Racing"
    }
  ]
}
console.log(JSON.stringify(myJson));
let tonen = JSON.stringify(myJson);
console.log(JSON.parse(tonen));